home *** CD-ROM | disk | FTP | other *** search
- //
- // ANIMATION FOR LAYER or DIV OBJECTS VERSION 1
- //
- // Software Applications for Web Objects (SAWO)
- // Created: November 26-1998
- //----------------------------------------------
- // jjpub=0 init value
- // nbly: nb of layer
- // ly1: parent object
- // ly2: child object
- //
- function animlayer(signe_browser,ly1,ly2,jjpub,nbly,timer) {
- for (var i = 1; i < nbly+1; i++){
- var lay=ly2+i;
- if (signe_browser==0) document[ly1].document[lay].visibility="hidden";
- if (signe_browser==1) document.all[ly1].document.all[lay].style.visibility="hidden";
-
- }
- jjpub=jjpub+1;
- if (jjpub==nbly+1) jjpub=1;
- var lay=ly2+jjpub;
- if (signe_browser==0) document[ly1].document[lay].visibility="inherit";
- if (signe_browser==1) document.all[ly1].document.all[lay].style.visibility="inherit";
- var timeout_id_animlayer = setTimeout("animlayer("+signe_browser+",'"+ly1+"','"+ly2+"',"+jjpub+","+nbly+","+timer+")",timer);
- }
-
-
-
-
-
-
-